From 24895b5f9b8288d7320f13025711980eff492111 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 8 Jan 2008 09:40:33 +0000 Subject: [PATCH] HVM vif without bridge. When using xen without a bridge but NAT or routing, HVM domains can't boot, and qemu-dm-n.log contains: config qemu network with xen bridge for tap0 xenbr0 bridge xenbr0 does not exist! That's because the qemu-ifup script always tries to add the vif to a default-named xenbr0 bridge. On the contrary, PV domains just work fine with the same configuration file except HVM parameters. Signed-off-by: Samuel Thibault --- tools/ioemu/target-i386-dm/qemu-ifup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ioemu/target-i386-dm/qemu-ifup b/tools/ioemu/target-i386-dm/qemu-ifup index bdc5aecc0e..bcbee92d65 100644 --- a/tools/ioemu/target-i386-dm/qemu-ifup +++ b/tools/ioemu/target-i386-dm/qemu-ifup @@ -34,4 +34,4 @@ then fi ifconfig $1 0.0.0.0 up -brctl addif $bridge $1 +brctl addif $bridge $1 || true -- 2.30.2